8. Write a Python Program to Find area of circle.
PI = 3.14
r = float(input("Enter the radius of a circle : "))
area = PI * r * r
print("Area of a circle = %.2f" % area)
PI = 3.14
r = float(input("Enter the radius of a circle : "))
area = PI * r * r
print("Area of a circle = %.2f" % area)